Skip to content

chore(deps): update actions/checkout action to v4 #147

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #147

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'yarn'
- name: Install dependencies
run: rm -rf node_modules && yarn install --frozen-lockfile
- name: Build
run: yarn build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'yarn'
- name: Install dependencies
run: rm -rf node_modules && yarn install --frozen-lockfile
- name: Lint
run: yarn lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: yarn
- name: Install dependencies
run: rm -rf node_modules && yarn install --frozen-lockfile
- name: Unit test
run: yarn ci:test