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:
307 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | name: "Unit Tests"
|
---|
| 2 |
|
---|
| 3 | on: [push]
|
---|
| 4 |
|
---|
| 5 | jobs:
|
---|
| 6 | build:
|
---|
| 7 | name: "Unit Tests on Ubuntu"
|
---|
| 8 | runs-on: ubuntu-latest
|
---|
| 9 |
|
---|
| 10 | steps:
|
---|
| 11 | - uses: actions/checkout@v2
|
---|
| 12 | - name: Use Node.js
|
---|
| 13 | uses: actions/setup-node@v1
|
---|
| 14 | with:
|
---|
| 15 | node-version: "18.x"
|
---|
| 16 | - run: npm install
|
---|
| 17 | - run: npm test
|
---|
Note:
See
TracBrowser
for help on using the repository browser.