source: imaps-frontend/node_modules/nano-css/.github/workflows/checks.yml

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 456 bytes
Line 
1name: Node CI
2
3on:
4 push:
5 branches: [ master ]
6 pull_request:
7 branches: [ master ]
8
9jobs:
10 checks:
11 runs-on: ubuntu-latest
12 strategy:
13 matrix:
14 node-version: [20.x]
15 steps:
16 - uses: actions/checkout@v4
17 - name: Use Node.js ${{ matrix.node-version }}
18 uses: actions/setup-node@v4
19 with:
20 node-version: ${{ matrix.node-version }}
21 cache: yarn
22 - run: yarn
23 - run: yarn test
Note: See TracBrowser for help on using the repository browser.