chore: update deps #616
Workflow file for this run
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
# Based on https://github.com/actions-rs/example/blob/master/.github/workflows/quickstart.yml | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
name: Basic | |
jobs: | |
test_and_lint: | |
name: Test and lint code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
- name: Use Node.js 20.9.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.9.0 | |
- name: Install dependencies | |
run: npm install | |
- run: npm run build | |
- run: npm run prettier | |
- run: npm run unimported | |
# - run: yarn test |