chore(deps-dev): bump lint-staged from 12.3.5 to 15.2.10 #887
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 | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x] | |
env: | |
CI: true | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.6.0 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install | |
run: npm ci | |
env: | |
CYPRESS_INSTALL_BINARY: "0" | |
- name: build | |
run: npm run package | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: alpine-devtools | |
path: dist | |
- name: unit tests | |
run: npm t | |
- name: check formatting | |
run: npm run format | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Apply formatting changes | |
# see https://github.com/bahmutov/cypress-gh-action-split-install | |
- run: npx cypress cache path && npx cypress cache list | |
# restore / cache the binary ourselves on Linux | |
# see https://github.com/actions/cache | |
- name: Cache Cypress | |
id: cache-cypress | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/Cypress | |
key: cypress-cache-v1-${{ runner.os }}-${{ hashFiles('**/package.json') }} | |
# install Cypress binary | |
- run: npx cypress install && npx cypress cache list | |
- uses: cypress-io/github-action@v2 | |
with: | |
start: npm run start:ci | |
command: npm run cy:run | |
install: false |