Show confirmation box on tab release #49
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
name: Pull Request Code Check | |
on: | |
pull_request: | |
jobs: | |
Test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/node-setup | |
- name: Run checks | |
run: npm run check | |
- name: Check if buildable | |
run: npm run build --production |