This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
Update CHANGELOG.md for 1.0.0 release #43
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash -l {0} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
# We need to merge this to one step to ensure node-sass has correct bindings in order to run tests | |
# otherwise will result in node-sass not getting correct setup for running | |
- name: Install & Test | |
run: | | |
nvm install | |
npm ci | |
nvm use | |
npm test |