Release version 2.4.1 #59
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: Verify code | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node 20 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20 | |
- name: Install packages | |
run: npm ci | |
- name: Build and verify | |
run: npm run build && npm run verify |