Skip to content

chore(deps): update actions/checkout digest to f43a0e5 #197

chore(deps): update actions/checkout digest to f43a0e5

chore(deps): update actions/checkout digest to f43a0e5 #197

Workflow file for this run

name: Lint code & build test
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # tag=v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
build:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # tag=v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build