Skip to content

Package web in release action #133

Package web in release action

Package web in release action #133

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
cache-dependency-path: yarn.lock
- name: Install and build
run: |
yarn --frozen-lockfile
yarn compile
env:
CI: true
- name: Test
uses: GabrielBB/xvfb-action@v1
with:
run: yarn test
- name: Lint
run: yarn lint