Skip to content

chore(deps): bump actions/checkout from 4 to 6 #9

chore(deps): bump actions/checkout from 4 to 6

chore(deps): bump actions/checkout from 4 to 6 #9

Workflow file for this run

name: Build & test
on:
push:
branches:
- trying
- staging
# Until support to verify master branch integrity
- master
tags: '**'
pull_request:
branches:
- master
- 'feature/**'
- 'release/**'
jobs:
package:
name: Build parser
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm test