We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9def817 commit 3164c4cCopy full SHA for 3164c4c
.github/actions/ci-setup/action.yml
@@ -0,0 +1,12 @@
1
+name: 'CI setup'
2
+runs:
3
+ using: 'composite'
4
+ steps:
5
+ - name: Use Node.js 20.x
6
+ uses: actions/setup-node@v3
7
+ with:
8
+ node-version: 20.x
9
+
10
+ - name: Install Dependencies
11
+ run: npm install
12
+ shell: bash
.github/workflows/ci.yml
@@ -0,0 +1,14 @@
+name: CI
+on: [push, pull_request]
+jobs:
+ build:
+ timeout-minutes: 20
+ runs-on: ubuntu-latest
+ - uses: actions/checkout@v3
+ - uses: ./.github/actions/ci-setup
13
+ - name: Test
14
+ run: npm run test
.travis.yml
0 commit comments