Skip to content

ci: migrate to OIDC trusted publishing #31

ci: migrate to OIDC trusted publishing

ci: migrate to OIDC trusted publishing #31

Workflow file for this run

name: PR checks
on:
push:
branches:
- master
pull_request:
jobs:
Lint-build-test:
strategy:
fail-fast: false
matrix:
version: [22.x]
name: Lint, build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint:check
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test
- name: Build
run: yarn build