Skip to content

feat: bumb node

feat: bumb node #228

Workflow file for this run

name: PR
on: [pull_request]
jobs:
pr:
strategy:
matrix:
step: ['lint', 'test', 'build']
name: ${{ matrix.step }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: checkout
- name: Setup node v18
uses: actions/setup-node@v4
with:
node-version: 18
- name: ${{ matrix.step }}
run: |
yarn install --immutable
yarn ${{ matrix.step }}