Skip to content

chore(repack-init): Release version 1.0.4 #365

chore(repack-init): Release version 1.0.4

chore(repack-init): Release version 1.0.4 #365

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
verify:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: ['16', '18', '20']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Type check
run: yarn typecheck
- name: Run tests
run: yarn test