main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
357 bytes
|
Line | |
---|
1 | name: Test
|
---|
2 |
|
---|
3 | on:
|
---|
4 | push:
|
---|
5 | branches: ["master"]
|
---|
6 | pull_request:
|
---|
7 | branches: ["master"]
|
---|
8 |
|
---|
9 | jobs:
|
---|
10 | test:
|
---|
11 | runs-on: ubuntu-latest
|
---|
12 |
|
---|
13 | steps:
|
---|
14 | - uses: actions/checkout@v3
|
---|
15 | - name: Use Node.js 14.6.x
|
---|
16 | uses: actions/setup-node@v3
|
---|
17 | with:
|
---|
18 | node-version: 14.6.x
|
---|
19 | cache: "npm"
|
---|
20 | - run: npm ci
|
---|
21 | - run: npm test
|
---|
Note:
See
TracBrowser
for help on using the repository browser.