Skip to content

Using commit sha for GH actions (#333) #170

Using commit sha for GH actions (#333)

Using commit sha for GH actions (#333) #170

Workflow file for this run

name: Master Build
on:
push:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Use Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 20
- name: install, build, and test
run: |
NPQ_PKG_MGR=yarn npx npq install
yarn build
yarn test
env:
CI: true