Build task #540
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 task | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
Build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Set Node.JS | |
uses: actions/setup-node@master | |
with: | |
node-version: 20.x | |
- name: npm install | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Run tests | |
run: npm run test | |
- name: Lint | |
run: npm run lint |