Skip to content

chore(deps): bump actions/checkout from 4.1.0 to 4.1.1 #160

chore(deps): bump actions/checkout from 4.1.0 to 4.1.1

chore(deps): bump actions/checkout from 4.1.0 to 4.1.1 #160

name: Build/Test
on: [ push, pull_request ]
jobs:
build:
name: build/test on node versions
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x, 16.x, 18.x, 19.x ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # 2.5.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
api.github.com:443
github.com:443
nodejs.org:443
registry.yarnpkg.com:443
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # 3.8.1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn type-check
- run: yarn lint
- run: yarn build-prod
- run: yarn set-plugin-version 0.0.0