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 0dc6fc1 commit 0a52046Copy full SHA for 0a52046
.github/workflows/build-test.yml .github/workflows/ci.yml.github/workflows/build-test.yml renamed to .github/workflows/ci.yml
@@ -1,23 +1,26 @@
1
-name: Build Test
+name: CI
2
3
on:
4
+ push:
5
+ branches:
6
+ - master
7
pull_request:
8
9
jobs:
- build-test:
- name: Build Test
10
+ build:
11
+ name: Build
12
runs-on: ubuntu-latest
13
steps:
14
- name: Checkout Code
- uses: actions/checkout@v3
15
+ uses: actions/checkout@v4
16
17
- name: Setup Node.js
18
uses: actions/setup-node@v3
19
with:
20
node-version: latest
21
cache: npm
22
- - name: Install Dependencies
23
+ - name: Install Packages
24
run: npm ci
25
shell: bash
26
0 commit comments