We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64ffc5e commit 2ec76cbCopy full SHA for 2ec76cb
2 files changed
.github/workflows/build_verify.yml
@@ -3,9 +3,6 @@ name: Phoenix build verification
3
on:
4
push:
5
branches: [ main ]
6
- pull_request:
7
- # The branches below must be a subset of the branches above
8
- branches: [ main ]
9
10
jobs:
11
build-tasks:
.github/workflows/pull_request_verify.yml
@@ -0,0 +1,20 @@
1
+name: Phoenix build verification
2
+
+on:
+ pull_request:
+ branches: [ main ]
+jobs:
+ build-tasks:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
12
+ - name: Npm Install
13
+ run: |
14
+ npm ci
15
+ - name: eslint using npm run eslint
16
17
+ npm run lint
18
+ - name: building Phoenix with npm run build
19
20
+ npm run build
0 commit comments