Skip to content

Disable scratch2 snapshots #2

Disable scratch2 snapshots

Disable scratch2 snapshots #2

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
run:
name: Run tests
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
token: ${{ github.token }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Install
run: npm ci
- name: Test
run: npm run test
- name: Check whether snapshot builds
run: npm run snapshots
- name: Check whether locales build
run: npm run locales
- name: Check whether the code builds
run: npm run build