Skip to content

Use correct skip syntax #2

Use correct skip syntax

Use correct skip syntax #2

Workflow file for this run

name: CICD
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '22'
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm test