Put dynamic tags in choice in correct order #812
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: Build | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
test: | |
name: CI tasks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: npm install | |
- name: Install codecov | |
run: npm install codecov | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |
- name: tests | |
run: npm run test |