Skip to content

Add data valid from 2024-03-04 #32

Add data valid from 2024-03-04

Add data valid from 2024-03-04 #32

Workflow file for this run

name: Lint, test and build
on: [push, pull_request]
jobs:
lint_test_build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
nodejs: [18, 20]
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