Skip to content

Bump docker/setup-qemu-action from 3 to 4 (#300) #1069

Bump docker/setup-qemu-action from 3 to 4 (#300)

Bump docker/setup-qemu-action from 3 to 4 (#300) #1069

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout branch 🛎
uses: actions/checkout@v6
- name: Setup node env 🏗
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies 👨🏻‍💻
run: yarn --frozen-lockfile
- name: Build 📦
run: yarn build
- name: Run linter 👀
run: yarn lint
- name: Run tests 🧪
run: yarn test:once