Skip to content

replace yarn ci with yarn install --frozen-lockfile #2

replace yarn ci with yarn install --frozen-lockfile

replace yarn ci with yarn install --frozen-lockfile #2

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ $default-branch, github-actions ]
pull_request:
branches: [ $default-branch ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn run lint
- run: yarn run format
- run: yarn run test
- run: yarn run build