Skip to content

Merge pull request #300 from nrkno/feat/update-lock-icons #225

Merge pull request #300 from nrkno/feat/update-lock-icons

Merge pull request #300 from nrkno/feat/update-lock-icons #225

Workflow file for this run

name: Build and test package
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
registry-url: "https://registry.npmjs.org"
cache: "npm"
- run: npm install -g npm
- run: npm ci
# Build to verify
- run: npm run build
# Verify built artefacts
- run: npm run test