Skip to content

Update actions to versions running on Node20 #215

Update actions to versions running on Node20

Update actions to versions running on Node20 #215

Workflow file for this run

name: Code
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Install dependencies
run: yarn install
- name: Format
run: yarn format