Skip to content

Pin GitHub Actions to commit #2039

Pin GitHub Actions to commit

Pin GitHub Actions to commit #2039

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Build
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: "20.16.0"
cache: "yarn"
- name: 📦 Install dependencies
run: yarn --frozen-lockfile
- run: yarn run lint
- run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- run: yarn run test
env:
DISPLAY: ":99.0"