source: imaps-frontend/node_modules/nano-css/.github/workflows/release.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: 611 bytes
Line 
1name: Node.js CI
2
3on:
4 push:
5 branches: [ master ]
6
7jobs:
8 release:
9 runs-on: ubuntu-latest
10 strategy:
11 matrix:
12 node-version: [20.x]
13 steps:
14 - uses: actions/checkout@v4
15 - name: Use Node.js ${{ matrix.node-version }}
16 uses: actions/setup-node@v4
17 with:
18 node-version: ${{ matrix.node-version }}
19 cache: yarn
20 - run: yarn
21 - run: yarn test
22 - name: Semantic Release
23 uses: cycjimmy/semantic-release-action@v4
24 env:
25 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26 NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Note: See TracBrowser for help on using the repository browser.