Skip to content

ci: clone test.yml changes #28

ci: clone test.yml changes

ci: clone test.yml changes #28

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
registry-url: 'https://registry.npmjs.org'
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Compile
run: yarn build
- name: Test
run: yarn test