Merge pull request #125 from durdsvianna/dev #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Web3Task CI | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.17.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Web3Task ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Run CI command | |
run: npm ci | |
# - name: Check linting | |
# run: npm run lint | |
# - name: Run the tests | |
# run: npm run test | |
- name: Build | |
run: npm run build |