source: node_modules/react-syntax-highlighter/.github/workflows/nodejs.yml

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: 555 bytes
Line 
1name: Node CI
2
3on: [push]
4
5jobs:
6 build:
7 runs-on: ubuntu-latest
8 env:
9 token: d37b4f28-c0ae-4546-81c9-0487a264db20
10 strategy:
11 matrix:
12 node-version: [14.x]
13
14 steps:
15 - uses: actions/checkout@v1
16 - name: Use Node.js ${{ matrix.node-version }}
17 uses: actions/setup-node@v1
18 with:
19 node-version: ${{ matrix.node-version }}
20 - name: npm install, build, and test
21 run: |
22 npm install
23 npm run build --if-present
24 npm run lint
25 npm test
26 npm run publish-coverage
Note: See TracBrowser for help on using the repository browser.