Update country code to 000 #415
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, Test & Lint | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
tests: | |
name: Run Tests & Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bahmutov/npm-install@v1 | |
- name: Build | |
run: npm run build | |
- name: Run tests | |
run: npm test | |
- name: Lint code | |
run: npm run lint:ci |