Add data valid from 2023-12-04 #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint, test and build | |
on: [push, pull_request] | |
jobs: | |
lint_test_build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
nodejs: [16, 18] | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Setup 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.nodejs }} | |
- name: Install dependencies 📦 | |
run: npm ci | |
- name: Lint, test and build 🏗 | |
run: | | |
npm run test | |
npm run lint | |
npm run build:all |