ci: check change in size of node_modules/
#821
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: Test | |
on: push | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js, NPM | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: npm run install | |
run: npm ci --legacy-peer-deps | |
- name: npm run build | |
run: npm run build | |
- name: npm test | |
run: npm test | |
# @hack: fix later | |
# - name: Cypress run | |
# uses: cypress-io/github-action@v2 | |
# with: | |
# start: npm start | |
# install-command: npm ci --legacy-peer-deps | |
# wait-on: "http://localhost:3000" |